hex to dec php

41

hex to dec php -

$hexadecimal = 'afc758';

$decimal = hexdec($hexadecimal);

echo $hexadecimal . ' -> decimal value is: ' . $decimal;

Comments

Submit
0 Comments